home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form frmMain
- BackColor = &H00C0C0C0&
- BorderStyle = 3 'Fixed Double
- Caption = "VB-Converter"
- ClientHeight = 972
- ClientLeft = 5592
- ClientTop = 2148
- ClientWidth = 4632
- Height = 1392
- Left = 5544
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 972
- ScaleWidth = 4632
- Top = 1776
- Width = 4728
- Begin CommonDialog cdialog
- Left = 3900
- Top = 480
- End
- Begin CommandButton cmdSearch
- Caption = "<"
- Height = 312
- Left = 4260
- TabIndex = 3
- Top = 120
- Width = 312
- End
- Begin CommandButton cmdStart
- Caption = "Convertiere!"
- Default = -1 'True
- Height = 372
- Left = 1440
- TabIndex = 2
- Top = 540
- Width = 2232
- End
- Begin TextBox inFile
- Height = 312
- Left = 1440
- TabIndex = 1
- Text = "inFile"
- Top = 120
- Width = 2772
- End
- Begin Label Label1
- BackStyle = 0 'Transparent
- Caption = "Input-Project:"
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 7.8
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 252
- Left = 60
- TabIndex = 0
- Top = 180
- Width = 1332
- End
- Option Explicit
- ' (c) 1996 SOFTplus Enwicklungen GmbH
- ' Unterdorf 143
- ' CH-8933 Maschwanden
- ' SWITZERLAND
- ' softplus@access.ch
- Sub cmdSearch_Click ()
- On Error Resume Next
- Err = 0
- cdialog.Filter = "*.mak *.vbp | *.mak *.vbp"
- cdialog.FilterIndex = 0
- cdialog.Action = 1
- If Err = 0 Then
- inFile = cdialog.Filename
- End If
- End Sub
- Sub cmdStart_Click ()
- On Error Resume Next
- sFileIn = inFile
- iDoWhat = 1
- frmWorking.Show 1
- End Sub
- Sub Form_Load ()
- On Error Resume Next
- inFile = ""
- Call CenterForm(Me)
- End Sub
-